home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / Buglist < prev    next >
Text File  |  1994-08-01  |  505b  |  17 lines

  1. Please delete help/Setup.opt before making bit. This only matters
  2. if you will not be using make install to install the bit package.
  3.  
  4. BUGS:
  5. 1. Crop Auto does not work due to a typo. The fix:
  6.  change line 349 of crop.c from:
  7.     set_rect(ibr, ibr->x + left, ibr->y + bot,
  8.  to
  9.     set_rect(cbr, cbr->x + left, cbr->y + bot,
  10.  
  11. 2. X11 Bitmap output bug:
  12.   change line 137 of xbm.c from
  13.     fprintf(im->fp, "static char %sbits[] = {\n ", tmpstr);
  14. to
  15.     fprintf(im->fp, "static char %s_bits[] = {\n ", tmpstr);
  16.  
  17.